08ff321c15896eda457bc163f4241c766db0616b,app/src/processing/app/ContributionManager.java,ContributionManager,createComponents,#,190
Before Change
pane.add(scrollPane, c);
// pane.add(scrollPane, c);
scrollPane
.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
}
{ // Shows "Category:"
After Change
scrollPane.getViewport().setOpaque(true);
scrollPane.getViewport().setBackground(contributionListPanel.getBackground());
scrollPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
statusBar = new StatusPanel();
statusBar.setBorder(BorderFactory.createEtchedBorder());